fix: remove memory leak iterative_factorial.cpp#2535
fix: remove memory leak iterative_factorial.cpp#2535realstealthninja merged 2 commits intoTheAlgorithms:masterfrom
iterative_factorial.cpp#2535Conversation
|
@vil02, some suggestions.. pls resolve the conflits |
4fe4cf4 to
e4ada59
Compare
@CarlosZoft luckily there were no conflicts, just my branch was out-of-date. It is fixed now. |
|
This pull request has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
@Panquesito7, @realstealthninja: Merry Christmas and please |
e4ada59 to
a86a017
Compare
a86a017 to
443d2ff
Compare
|
This pull request has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
Please add |
|
This pull request has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I still think this PR is valuable. |
|
@vil02 no more don't closing cause I'm merging it |


Description of Change
There is a memory leak in
iterative_factorial.cppwhile throwing an exception. This PR fixes it and does some other small changes.Checklist
Added file name matches File name guidelinesAdded tests and example, test must passAdded documentation so that the program is self-explanatory and educational - Doxygen guidelinesRelevant documentation/comments is changed or addedNotes:
Removes memory leak in
iterative_factorial.cpp.